home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 25 user and custom controls / usercontrolsdemo / pagingbarfirst.ascx.vb < prev    next >
Encoding:
Text File  |  2002-03-19  |  1022 b   |  28 lines

  1. ' An initial version of the PagingBar control
  2. ' containing no code at all
  3.  
  4. Public MustInherit Class PagingBarFirst
  5.     Inherits System.Web.UI.UserControl
  6.     Protected WithEvents btnFirst As System.Web.UI.WebControls.Button
  7.     Protected WithEvents btnPrevious As System.Web.UI.WebControls.Button
  8.     Protected WithEvents litNumber As System.Web.UI.WebControls.Literal
  9.     Protected WithEvents btnNext As System.Web.UI.WebControls.Button
  10.     Protected WithEvents btnLast As System.Web.UI.WebControls.Button
  11.  
  12. #Region " Web Form Designer Generated Code "
  13.  
  14.     'This call is required by the Web Form Designer.
  15.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  16.  
  17.     End Sub
  18.  
  19.     Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
  20.         'CODEGEN: This method call is required by the Web Form Designer
  21.         'Do not modify it using the code editor.
  22.         InitializeComponent()
  23.     End Sub
  24.  
  25. #End Region
  26.  
  27. End Class
  28.